home *** CD-ROM | disk | FTP | other *** search
- /* EXTEND.LOD - Actor development extensions load file
- *
- * Copyright(C) 1991 Steve Hatchett. All rights reserved.
- * Steve Hatchett 14352 Mussey Grade Rd.
- * CIS: 70304,1423 Ramona, CA 92065
- *
- * Use this file to load the development environment
- * extensions for use with the Actor programming
- * language.
- * load("extend.lod");
- * load();
- */
- #define MAXSOURCENEST 5; /* max directory nesting */
- Actor[#Programmer] := " "; /* set this in workspace */
- Actor[#StampText] := "Stamp";/* time stamp header. Another
- * useful stamp header would be
- * "Copyright (C) 1991 XYZ, Inc."*/
- LoadFiles :=
- {
- /* Your path may be different. */
- load(new(SourceFile),"c:\actor\general\classes\string.clx");
- load(#("classes\extsource.cls"
- "c:\actor\general\classes\symbol.clx"));
-
- /* The minimum code necessary to navigate the directory
- * hierarchy has now been loaded, paths are no longer needed.
- */
- do(#(Behavior Browser ClassDialog ClVarDialog Function
- SourceFile System ToolWind WorkEdit), {using(cl)
- loadExtensions(cl);
- });
- }
- !!
-